Dynomotion

Group: DynoMotion Message: 11336 From: tmday7 Date: 4/10/2015
Subject: Disable Enter Key
I think i got the Customizing bug again.....;)
Now that i have the JogSlowPercent box on the main dialog face, there is an issue if i hit the enter key after changing the Jog%. What happens is whatever is in the MDI box gets executed!
I have been trying not to hit the enter key after changing the Jog% , but its just a habit to do this after typing. :) And i have had few close calls.

How can the enter key for the MDI box be disabled or is there a better way?

Thanks,
Troy


Group: DynoMotion Message: 11341 From: Tom Kerekes Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Troy,

A few Test Versions ago we added the code shown below to ignore the Enter Key pushing the default screen button (Send) unless the MDI cell (IDC_Command) currently has the focus.  This should solve the problem with hitting Enter from all screen cells including your Jog.  The "if" condition is deciding whether or not to ignore the Send request unless the User actually clicked the Send button or if the screen focus is at the MDI cell.   Does your code have this?


void CKMotionCNCDlg::OnSend()
{
    if (!UpdateData()) return;


    if (GetFocus()->GetDlgCtrlID() != IDC_Send &&
        GetFocus()->GetParent()->GetDlgCtrlID() != IDC_Command)
        return;





Regards
TK


Group: DynoMotion Message: 11349 From: tmday7 Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Tom,
 Here is code i have ...

void CKMotionCNCDlg::OnSend()
{
    if (!UpdateData()) return;

    if (DoGCodeLine(m_CommandString)) return;

    // Save last few enterd commands

    // first check for a duplicate

    int i;
    for (i=0; i<NCOMMAND_HISTORY-1; i++)
        if (CommandHistory[i] == m_CommandString) break;

    // push the others down over where it is (or to the last)

    for (int k=i; k>0; k--)
        CommandHistory[k] = CommandHistory[k-1];

    CommandHistory[0] = m_CommandString;
}

The above is the only
void CKMotionCNCDlg::OnSend()
in the KMotionCNCdlg.cpp file.

Would the focus if focus be placed above the if (DoGCodeLine(m_CommandString)) return; or replace it?
Thanks,
Troy
Group: DynoMotion Message: 11350 From: Tom Kerekes Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Troy,

Your code must all be based from an earlier version.

The "if" statement would be added before the:

    if (DoGCodeLine(m_CommandString)) return;

Regards
TK

Group: DynoMotion Message: 11351 From: tmday7 Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Tom,
Iam still running V4.32. The only "void CKMotionCNCDlg::OnSend()" i have in the KMotionCNCdlg.cpp file is this....

void CKMotionCNCDlg::OnSend()
{
    if (!UpdateData()) return;

    if (DoGCodeLine(m_CommandString)) return;

    // Save last few enterd commands

    // first check for a duplicate

    int i;
    for (i=0; i<NCOMMAND_HISTORY-1; i++)
        if (CommandHistory[i] == m_CommandString) break;

    // push the others down over where it is (or to the last)

    for (int k=i; k>0; k--)
        CommandHistory[k] = CommandHistory[k-1];

    CommandHistory[0] = m_CommandString;
}

Would i place the if focus statement  you posted,  right above "if (DoGCodeLine(m_CommandString)) return;" ? Or replace the line?

Thanks,
Troy
Group: DynoMotion Message: 11353 From: Tom Kerekes Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Troy,

Download and compare to:

http://dynomotion.com/Software/KMotion433k.exe

Regards
TK

Group: DynoMotion Message: 11355 From: tmday7 Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Tom,
 That fixed it. :)
Thanks again,
Troy
Group: DynoMotion Message: 11356 From: tmday7 Date: 4/10/2015
Subject: Re: Disable Enter Key
Hi Tom,
 At some point i will move to the next version of KMotion, but just not ready to redo all my custom code and screen mods yet :) And i will have to rework dialog face for the nice Feed Rapid Override you added.

Thanks again for you hard work Tom,
Troy